home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk.zip / REGEXP.H < prev    next >
C/C++ Source or Header  |  1991-04-07  |  793b  |  33 lines

  1.  
  2. /********************************************
  3. regexp.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the Awk programming language as defined in
  8. Aho, Kernighan and Weinberger, The AWK Programming Language,
  9. Addison-Wesley, 1988.
  10.  
  11. See the accompaning file, LIMITATIONS, for restrictions
  12. regarding modification and redistribution of this
  13. program in source or binary form.
  14. ********************************************/
  15.  
  16. /*$Log:    regexp.h,v $
  17.  * Revision 2.1  91/04/08  08:23:47  brennan
  18.  * VERSION 0.97
  19.  * 
  20. */
  21.  
  22. #include <stdio.h>
  23.  
  24. PTR   PROTO( REcompile , (char *) ) ;
  25. int   PROTO( REtest, (char *, PTR) ) ;
  26. char *PROTO( REmatch, (char *, PTR, unsigned *) ) ;
  27. void  PROTO( REmprint, (PTR , FILE*) ) ;
  28.  
  29. extern  int  REerrno ;
  30. extern  char *REerrlist[] ;
  31.  
  32.  
  33.